X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/docs/source/Slider.html%20%28Case%20Conflict%201%29 diff --git a/docs/source/Slider.html (Case Conflict 1) b/docs/source/Slider.html (Case Conflict 1) new file mode 100644 index 00000000..ae5b0a7b --- /dev/null +++ b/docs/source/Slider.html (Case Conflict 1) @@ -0,0 +1,68 @@ + + + The source code + + + + +
Ext.onReady(function(){
+
+    new Ext.Slider({
+        renderTo: 'basic-slider',
+        width: 214,
+        minValue: 0,
+        maxValue: 100
+    });
+
+    new Ext.Slider({
+        renderTo: 'increment-slider',
+        width: 214,
+        value:50,
+        increment: 10,
+        minValue: 0,
+        maxValue: 100
+    });
+
+    new Ext.Slider({
+        renderTo: 'vertical-slider',
+        height: 214,
+        vertical: true,
+        minValue: 0,
+        maxValue: 100
+    });
+
+    new Ext.Slider({
+        renderTo: 'tip-slider',
+        width: 214,
+        minValue: 0,
+        maxValue: 100,
+        plugins: new Ext.ux.SliderTip()
+    });
+
+    var tip = new Ext.ux.SliderTip({
+        getText: function(slider){
+            return String.format('{0}% complete', slider.getValue());
+        }
+    });
+
+    new Ext.Slider({
+        renderTo: 'custom-tip-slider',
+        width: 214,
+        increment: 10,
+        minValue: 0,
+        maxValue: 100,
+        plugins: tip
+    });
+
+    new Ext.Slider({
+        renderTo: 'custom-slider',
+        width: 214,
+        increment: 10,
+        minValue: 0,
+        maxValue: 100,
+        plugins: new Ext.ux.SliderTip()
+    });
+});
+
+ + \ No newline at end of file